home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d19 / pcblup12.arc / UPLOAD.BAT < prev   
DOS Batch File  |  1989-05-15  |  642b  |  25 lines

  1. echo off
  2. rem.
  3. rem. for uploading into the "main board" upload directory.
  4. rem. make similar batch files and config files for uploading into
  5. rem. your other conferences.
  6. rem.
  7.  
  8. rem. move to directory where uploads are initially stored
  9. d:
  10. cd \zdl
  11.  
  12. rem. run pcblup - this ONLY makes log entries
  13. pcblup c:\pcb\lupmain.cnf *.arc
  14.  
  15. rem. copy the files into the real upload directory
  16. touch *.arc
  17. mv *.arc \upload
  18.  
  19. rem. if upload directory is not on the same drive as the "initial directory"
  20. rem. (in this case, d:\zdl) you cannot use the 'mv' command.  use these
  21. rem. commands instead:
  22.  
  23. rem. copy *.arc c:\upload
  24. rem. del *.arc
  25.